const traditional = function (x) {
    return x * x;
};
const conciseBody = (x) => x * x;
